//
// main.m
// iphone-gl-app
//
// Created by John Ryland on 7/06/09.
// Copyright InvertedLogic 2009. All rights reserved.
//
#import <UIKit/UIKit.h>
#include "Debug.h"
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
DebugMessage::debug("XXXXX\n");
DebugMemory::disable();
DebugMemory::showMemoryAllocations();
DebugMemory::showMemoryLeaks();
DebugMessage::debug("YYYYY\n");
[pool release];
return retVal;
}